home *** CD-ROM | disk | FTP | other *** search
- unit CCopy;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls, Dialogs, Gauges, CCopyDlg;
-
- type
- TCCopyBox = class(TForm)
- Panel1: TPanel;
- Gauge: TGauge;
- SourceLabel: TLabel;
- TargetLabel: TLabel;
- Label1: TLabel;
- Label2: TLabel;
- BitBtn1: TBitBtn;
- procedure BitBtn1Click(Sender: TObject);
- private
- public
- bCancel : Boolean;
- end;
-
- var
- CCopyBox: TCCopyBox;
-
- implementation
-
- {$R *.DFM}
-
- procedure TCCopyBox.BitBtn1Click(Sender: TObject);
- begin
- bCancel := true;
- end;
-
- end.
-
-